AE 315 · Experimental Aerodynamics · Spring 2025 · ERAU
The NACA 4412 is a classic cambered airfoil used on general aviation aircraft. This lab measured its real aerodynamic performance across a range of angles of attack, then compared those measurements against ideal potential-flow predictions. The gap between theory and experiment directly quantifies the performance penalty of viscosity: the reason every real wing produces less lift and more drag than inviscid models predict — a trade-off designers must account for from the earliest stages of wing design.
At 15 m/s, the 18 surface pressure taps sampled the pressure distribution simultaneously at each angle of attack while a traversing probe swept 76 heights through the downstream wake. Lift was obtained by integrating the pressure difference between the lower and upper surfaces along the chord:
Cl = (1/c) ∫LETE (Cp,lower − Cp,upper) dx
Drag was derived from the wake momentum deficit — a method that captures viscous drag directly from the velocity profile downstream and requires no physical force sensor. Pitching moments about both the leading edge and quarter-chord were integrated from the same pressure data, and all results were compared against panel code (potential flow) predictions.
Surface pressure and wake traverse data were integrated to extract aerodynamic coefficients. The zero-lift angle was found by linear interpolation of the Cl–α curve through zero lift.
% Lift coefficient from pressure integration (lower - upper)
Cl(i) = trapz(lower_x, Cp_lower(i,:)) - trapz(upper_x, Cp_upper(i,:));
% Drag from wake momentum deficit
D(i) = rho * trapz(z(i,:), Vel(i,:) .* (V_inf - Vel(i,:)));
Cd(i) = D(i) / (0.5 * rho * V_inf^2 * chord);
% Zero-lift angle of attack
alpha_0 = interp1(Cl, AoA_vals, 0, 'linear', 'extrap'); % = -3.31°